@charset "utf-8";
:root{
   purple:#2F192E;
   purple-light:#30192d;
   dark-blue:#012677;
   blue:#5c65c0;
   skyblue :#00b4fc;
   light-blue:#005bc5;
   dark-pink:#f64c57;
   dark-magenta:#e21b5a;
   light-green:#61e2c2;
   light-purple:#d9abff;
}

*{
    box-sizing: border-box;
    padding:0;
    margin:0;
    text-decoration: none;
    font-family: poppins,sans-serif;
}

.hero-header{
    width:100%;
    background: #222;
}
.wrapper{
    width:1000px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
header{
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.logo i{
    height: 45px;
    width:45px;
    background-color: #007ced;
    border-radius: 50%;
    color:#fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    text-align: center;
    
}
header .logo img:hover  {
    background-color: rgba(86,86,86,1.00);
    border-radius: 40px;
}
.logo .logo-text{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: normal;
    margin-left: 5px;
}
nav .togglebtn span{
    display: block;
    background-color: #007ced;
    margin: 0px 0px;
    width: 1%;
    height: 1px;
    transition: 0.3s;
    transition-property: transform, opacity;
    float: right;
}
nav .navlinks{
    list-style-type: none;
    clear: both;
}
nav .navlinks li{
    display: inline-block;
    clear: both;
}
nav .navlinks li a{
    font-family: Clicker Script;
    color: #e5e5e5;
    margin-right: 2.5rem;
    clear: both;
    text-decoration: underline;
}
body{
    background: #131313;
}
.container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 100%;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}
.profile-card{
    background: #111;
    width:400px;
    padding: 3rem;
    border-radius: 10px;
    min-height: 500px;
    position: relative;
    color:#fff;
    margin: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.profile-card .profile-pic{
    margin-top: 15px;
    overflow: hidden;
}
.profile-card .profile-pic img{
    border-radius: 10px;
}
.profile-card .profile-details{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width:100%;
}
.profile-details .intro{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.profile-details .intro h2{
    margin-top: 20px;
}
.profile-details .intro h4{
    background: #1d1d1d;
    font-weight: 400;
    border-radius: 4px;
    padding: 5px 10px;
    margin: 8px;
}
profile-details .intro .social{
    margin-top: 10px;
    margin-bottom: 25px;
}
.profile-details .intro .social i{
    color:#ddd;
    font-size: 16px;
    background-color:#222;
    margin: 5px;
    height: 35px;
    width:35px;
    line-height: 35px;
    text-align: center;
    border-radius: 5px;
    transition: 0.5s;
}
.profile-details .intro .social i:hover {
    transform: scale(1.2);
    border: 1px solid rgba(193,170,110,0.68);
    background-color: rgba(71,56,57,1.00);
}
.profile-details .contact-info{
    background-color: #1d1d1d;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}
.profile-details .contact-info .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 10px 0;
    margin-bottom: 10px;
}
.contact-info .row .icon{
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 5px;
    background-color: #111;
    text-align: center;
    color:#fff;
    transition: 0.5s;
}
.row .icon.hover{
    transform:scale(1.2);
    border:1px solid rgba(255,255,255,0.1);
}
.row .content{
    min-width: 70%;
}
.row .content span{
    font-size: 12px;
    justify-content: right;
	float: right;
}
.profile-card .profile-details a {
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
}

.profile-card .profile-details a:hover  {
    background-color: rgba(60,60,60,1.00);
    border-width: 604px;
    border-radius: 40px;
    border-style: none;
    height: 40px;
    width: auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    font-size: small;
    padding-top: 15px;
    padding-bottom: 15px;
}
